home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Developers / nShell Prog / Programmer's Guide / 12 Callbacks - Misc < prev    next >
Encoding:
Text File  |  1994-09-04  |  501 b   |  25 lines  |  [TEXT/ttxt]

  1. 12 Callbacks - Misc
  2. ===================
  3.  
  4. These are general service routines available to nShell commands.
  5.  
  6. NSH_match
  7. ---------
  8.  
  9. int  NSH_match(Str255 pattern, Str255 target);
  10.  
  11. PARAMETERS
  12.  
  13.     Str255    pattern    address of a pattern string
  14.     Str255    target    address of a string to be compared against.
  15.  
  16. RETURNS
  17.  
  18.     0    match
  19.     1    no match
  20.     others    error
  21.  
  22. PROCESS
  23.  
  24. This routine compares two strings using nShell wildcard rules.  See Ch. 6, "Wildcards", of the nShell User's Guide for a description of the pattern rules.
  25.